From 44f616edb97520e9bc82b9f9c0658a8a35806b89 Mon Sep 17 00:00:00 2001 From: Wollnashorn Date: Wed, 14 Jun 2023 03:57:39 +0200 Subject: video_core: Never apply AF to None mipmap mode Should fix some artifacts with the "apply anisotropic filtering for all mipmap modes" option --- src/video_core/textures/texture.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index 083bfd8d3..b46dce096 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp @@ -62,9 +62,10 @@ std::array TSCEntry::BorderColor() const noexcept { } float TSCEntry::MaxAnisotropy() const noexcept { - if (max_anisotropy == 0 && (depth_compare_enabled.Value() || - (mipmap_filter != TextureMipmapFilter::Linear && - !Settings::values.use_aggressive_anisotropic_filtering))) { + const bool suitable_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering + ? mipmap_filter != TextureMipmapFilter::None + : mipmap_filter != TextureMipmapFilter::Linear; + if (max_anisotropy == 0 && (depth_compare_enabled.Value() || !suitable_mipmap_filter)) { return 1.0f; } const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); -- cgit v1.2.3